home *** CD-ROM | disk | FTP | other *** search
- /*-----------------------------------------------------------------------
- ;
- ; XCBITMAP - header file
- ;
- ; This module was written by Matthew MacKenzie
- ; matm@eng.umd.edu
- ;
- ;
- ; ****** XLIB - Mode X graphics library ****************
- ; ****** ****************
- ; ****** Written By Themie Gouthas ****************
- ;
- ; egg@dstos3.dsto.gov.au
- ; teg@bart.dsto.gov.au
- ;
- ;----------------------------------------------------------------------*/
- /* Notice that there is no function in this module to plot a
- compiled bitmap. Use x_put_cbitmap in module XCBITMAP. */
-
- /* This module is only for 386+ class computers. */
-
- #ifndef _XCBITMAP_H_
- #define _XCBITMAP_H_
-
- int x_compile_bitmap ( /* Compile a linear bitmap to generate */
- int logical_screen_width, /* machine code to plot it at any */
- char * bitmap, /* required screen coordinates FAST. */
- char * output);
-
- int x_sizeof_cbitmap ( /* Find the size of the code which a */
- int logical_screen_width, /* bitmap would result in, if it */
- char * bitmap); /* were compiled (used for allocation). */
-
- void x_put_cbitmap(ushort XPos, ushort YPos, ushort PageOffset, char * Sprite);
-
-
- #endif
-